Skip to content

Instantly share code, notes, and snippets.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@NewkoDremur
NewkoDremur / RU.json
Created May 20, 2026 16:56
Russian translation: Scav Prototype 6.1 Demo
{
"name": "Русский",
"description": "Неофициальный Перевод для версии 6.1 Demo от Newko (DS:amyizayoi)",
"main": {
"bandage": "Бинт",
"bandagedsc": "Рулон ткани, используемый для замедления кровотечения, фиксации переломов и заживления кожи. (Не влияет на здоровье мышц.).",
"rippeddressing": "Рваная ткань",
"rippeddressingdsc": "Небольшая клочёк ткани. Можно использовать как импровизированный бинт.",
"rag": "Старый Бинт",
"ragdsc": "Изношенный, скомканный. Но всё ещё может спасти вашу жизнь.",

How to download from pan.baidu without account

How to download from pan.baidu.com

How to download from quark, 123 pan , weiyun without an account?

Looking for a way to download files from pan.baidu.com (Baidu Netdisk) for free? Here’s a simple step-by-step tutorial using a third-party website that generates direct download links.


@yovko
yovko / arch_linux_install_notes.md
Last active May 24, 2026 17:29
Arch Linux installation (BTRFS+LUKS2+Limine)
/*
* Copyright 2026 Kyriakos Georgiopoulos
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@Brajesh2022
Brajesh2022 / Running Antigravity CLI on Termux.md
Last active May 24, 2026 17:23
Working setup for running Antigravity CLI (agy) natively on Android Termux without proot-distro, VMs, or Cloud Shell. Fixes 7 compatibility issues: TCMalloc 39-bit VA, faccessat2 syscall, glibc libc.so shim, LD_PRELOAD pollution, DNS resolver, TLS certificates, and shell hash caching. Includes a reusable pattern-based binary patch script (patch_…

This document describes the working setup for running the native Antigravity CLI (agy) on Android Termux.

The main goal is to run the official Linux ARM64 Antigravity binary directly from Termux without Cloud Shell, without a full VM, and without replacing Android. The setup uses a small binary patch plus a wrapper that adapts the Linux/glibc binary to Termux's Android environment.

The method is designed to be repeatable for future Antigravity releases. The patch script scans instruction patterns instead of relying on fixed offsets. If Antigravity changes its allocator code generation in the future, the script will print warning counts instead of silently claiming success.

What This Fixes

Antigravity's Linux ARM64 binary can fail on Termux for multiple independent reasons.